@charset "UTF-8";
@import "./app.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    padding: 0;
    margin: 0;
}

body {
    margin: 0 auto;
    padding: 0;
    font-family: var(--font-Nunito);
    font-size: var(--font16);
    font-weight: 400;
    overflow-x: hidden;
    color: var(--black);
}

a {
    color: var(--white);
}

a,
a:hover,
a:focus {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:focus,
a:active,
button:focus,
button:active,
input:focus,
textarea:focus {
    outline: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

button::-moz-focus-inner {
    outline: 0;
}

ul li,
ol li {
    list-style-type: none;
    text-decoration: none;
}

:focus {
    outline: -webkit-focus-ring-color auto 0;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

ul {
    margin: 0;
    padding: 0;
}
.clearfix {
    clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-Nunito);
}
h1{

    font-size: var(--font65);
}

h2 {
    font-size: var(--font48);
}

h3 {
    font-size: var(--font36);
}

h4 {
    font-size: var(--font32);
}

h5 {
    font-size: var(--font16);
}

h6 {
    font-size: var(--font15);
}

img {
    display: block;
    width: 100%;
}

svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
p {
    letter-spacing: .3px;
}
.img-contain {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: contain;
}
.img-cover {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}
.section-top-padding{
    padding-top: 5rem;
}
.section-btm-padding {
    padding-bottom: 5rem;
}
.contentwrapper{
    margin-top: 5rem;
}
/* -------------------- header ----------------- */

.navbar-brand {
    display: block;
}

header {
    position: fixed;
    padding: 20px 0;
    width: 100%;
    top: 0;
    z-index: 99;
    background: rgb(12 77 162 / 77%);
    backdrop-filter: blur(5px);
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

header.scrolled {
    background: var(--primary);
}

.logo {
    width: 15%;
}

.logo img {
    width: 100%;
}

.nav-link ul li a , .phone-number{
    position: relative;
    color: var(--white);
    font-size: var(--font20);
    font-weight: 300;
    line-height: 1;
}

.nav-link  ul li a:hover, .phone-number:hover , .phone-icon img:hover {
transition: all ease 0.5s;
color: var(--secondary);
}


.phone-icon img {
    display: none;
}

/* --------------------------------home-paage--------------------------------------- */

.tab-banner, .phone-banner {
    display: none;
}


.heroBanner {
    aspect-ratio: 16 / 7;
}


.about-block {
    text-align: center;
}


.about-block .sec-heading h5 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.about-content {
    width: 80%;
    margin: 0 auto;
}

.about-content p {
    font-size: var(--font36);
    font-weight: 200;
    line-height: 1.4;
}

.intro-img img {
    width: 100%;
    border-radius: 24px;
}

.intro-content p {
    font-size: var(--font20);
    font-weight: 300;
    line-height: 1.4;
}


.gallery-block .sec-heading h2 {
    font-weight: 700;
    line-height: 1;
}

.project-thumb {
    aspect-ratio: 16 / 12;
    border-radius: 24px;
    overflow: hidden;
}

.popup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------------------------------------conatct-us----------------------------- */


.contact-heroBanner {
    background: var(--primary);
    height: 360px;
    padding-bottom: 35px;
    position: relative;
}

.contact-heroBanner .container {
    display: flex;
    align-items: flex-end;
    height: 100%;
    position: relative;
    z-index: 2;
}

.contact-heroBanner .container h1{
    color: var(--white);
    font-weight: 200;
    line-height: 1;
}


.location-block .sec-heading h4 {
    font-weight: 600;
    line-height: 1;
    margin-bottom: 15px;
}

.location-block .address p {
    font-size: var(--font20);
    font-weight: 300;
    line-height: 1.4;
}

.features p {
    font-size: var(--font20);
    font-weight: 700;
    line-height: 1;
    /* margin-bottom: 15px; */
}


.features a {
    color: var(--black);
    font-weight: 300;
    line-height: 1;
}

.fw-300 {
    font-weight: 300;
}

.fw-700 {
    font-weight: 700;
}


.map-block iframe {
    width: 100%;
    border-radius: 24px;
    margin: 25px 0 0 0;
}

.view-map a {
    font-size: var(--font14);
    color: var(--black);
    font-weight: 400;
    line-height: 1;
    
}

.view-map a:hover, .features a:hover {
    color: var(--primary);
    transition: all ease 0.5s;
}






/* ----------------- footer -------------------- */

.copyright{
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    text-align: left;
}
.copyright p{
    font-size: var(--font15);
}

/* ------------------------popup-css------------------- */

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}


/* ------------------------whatsicon-start------------------------- */

.whatsapp-icon {
    position: fixed;
    right: 0;
    bottom: 95px;
    z-index: 998;
  }
  .whatsapp-icon a {
    width: 64px;
    border-radius: 8px 0px 0px 8px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    display: block;
    overflow: hidden;
    margin-bottom: 5px;
    padding-right: 10px;
    position: relative;
    right: -10px;
  }
  .whatsapp-icon a:hover {
    right: 0px;
  }
  .whatsapp-icon a img { width: 100%;}
  .whatsapp-icon a {
    background-color: #25d367;
  }


  /* ----------------------------------onload-popup-start------------------------ */
  .highlight-panel {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.71);
    width: 100%;
    height: 100%;
    z-index: 99999;
    top: 0;
    left: 0;
    display: none;
    /* backdrop-filter: blur(4px); */
    display: flex;
    justify-content: center;
}


.highlight-block {
    position: absolute;
    top: 50%;
    width: auto;
    max-width: 500px;
    left: auto;
    right: auto;
    margin: 0 auto 20px auto;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 5px;
    background-color: #fff;
    color: #000;
    font-size: 13px;
    line-height: 20px;
    text-align: justify;
}


.highlight-block img {
    display: block;
    width: 100%;
    height: 100%;
}


.highlight-close {
    display: block;
    text-align: center;
    background-color: #324f94;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    top: 0px;
    right: -36px;
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------------------------------------cat-start--------------------- */

.cat-block {
    background: #E9EDF2;
    padding: 80px 0;
}

.categories .sec-heading h3 {
    font-weight: 600;
    line-height: 1;
    color: var(--primary);
}

.cat-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px;
}

.cat-col {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.cat-img {
    aspect-ratio: 1 / 1;
    width: 100%;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.cat-col h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    padding: 8px;
    background: var(--primary);
    color: #fff;
}

/* ---------------------------whatsapp-banner-start---------------------------- */
.waBanner {
    width: 100%;
    position: relative;
    padding: 60px 45px;
    background: var(--primary);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    overflow: hidden;
}

.waBanner .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.banner-txt {
    width: 65%;
}

.banner-img {
    width: 100%;
    max-width: 250px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 50px;
}

.wa-link {
    display: flex;
    align-items: center;
    gap: 30px;
}


.waBanner .banner-txt p {
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
}

.waBanner .banner-txt p span {
    font-weight: 700;
}
.waBanner .banner-txt p span:last-child{
    display: block;
}


.waBanner .banner-txt a {
    background: var(--secondary);
    color: var(--black);
    padding: 12px 25px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    display: block;
    width: fit-content;
    border-radius: 10px;
}

.waBanner .banner-txt a:hover {
    transition: all ease 0.3s;
    background: var(--white);
    color: var(--primary);
}
